fix all instances of old *_ERR error names to new *Error style 
diff --git a/XMLHttpRequest/open-url-multi-window-3.htm b/XMLHttpRequest/open-url-multi-window-3.htm index 4a56606..b3652df 100644 --- a/XMLHttpRequest/open-url-multi-window-3.htm +++ b/XMLHttpRequest/open-url-multi-window-3.htm 
@@ -13,7 +13,7 @@  var client = new self[0].XMLHttpRequest()  client.open("GET", "folder.txt")  document.body.removeChild(document.getElementsByTagName("iframe")[0]) - assert_throws("INVALID_STATE_ERR", function() {  + assert_throws("InvalidStateError", function() {   client.send(null)  }, "send() when associated document's IFRAME is removed")  })